home *** CD-ROM | disk | FTP | other *** search
/ PC Direct 1998 August / PC Direct August 1998.iso / S / powerj / Product / hpp.z / dtjhttp.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1997-11-25  |  590 b   |  24 lines

  1. // Design Time Java Socket implementation. (HPP)
  2.  
  3. #ifndef _DTJHTTP_HPP
  4. #define _DTJHTTP_HPP
  5.  
  6. #include "dtjobjct.hpp"
  7. #include "dtjinet.hpp"
  8.                       
  9. class METAEXPORTCLASSDEF DTJHTTP : public DTJInternet
  10. {
  11.     public:
  12.         DTJHTTP( const MetaObject * pMetaObj );
  13.         virtual ~DTJHTTP();
  14.         
  15.         virtual void GenerateCode( MMCodeGeneration mmCodeGen,
  16.                    ostream& src,
  17.                    MMCodeGenerationParms& pGenParms );
  18. };
  19.  
  20. // needed for mdreader
  21. typedef DTJHTTP DTpowersoft__dot__powerj__dot__net__dot__HTTP__dot__102;
  22.  
  23. #endif // _DTJHTTP_HPP
  24.